home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 326-350 / disk_326 / dispmod / docs / text.doc < prev    next >
Text File  |  1992-05-06  |  1KB  |  39 lines

  1.  
  2. NAME:   TEXT, LTEXT, HTEXT, LHTEXT
  3.  
  4. SYNTAX: TEXT   <string>
  5.         LTEXT  <string>
  6.         HTEXT  <string>
  7.         LHTEXT <string>
  8.  
  9. DESCRIPTION:
  10.  
  11.    TEXT and LTEXT are two variations of the same command.  TEXT will
  12.    tell the display module to place a string on the screen.  LTEXT will
  13.    place a string on the screen, but will append a linefeed to the end of
  14.    it.
  15.  
  16.    HTEXT and LHTEXT are exactly the same except that they will print
  17.    to the screen in a highlight colour.
  18.  
  19. EXAMPLES:
  20.  
  21.   TEXT  'No CR after this string. Use for prompts: '
  22.   LTEXT 'This string will print and send a CR.'
  23.  
  24.   LTEXT this will GoOut in All caPITals
  25.  
  26.   HTEXT 'In a different colour, with no linefeed.'
  27.   LTEXT 'Also in the highlight colour, but with a linfeed.'
  28.  
  29.  
  30. NOTES:
  31.  
  32.   Use TEXT to send prompts for user input. LTEXT is for regular text.
  33.   Any unquoted string will go out as all capital letters.
  34.   All strings follow standard ARexx conventions for quoting, using
  35.   hex or binary data, etc. All 'escape sequences' supported by the Amiga
  36.   console device will be recoignized.
  37.  
  38. SEE ALSO: HTEXT
  39.